home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / update~4.z / update~4 / include_include.dif < prev    next >
Encoding:
Text File  |  1989-09-06  |  5.5 KB  |  218 lines

  1. *** /tmp/,RCSt1a15510    Wed Sep  6 02:32:47 1989
  2. --- PatchLevel.h    Wed Sep  6 02:27:59 1989
  3. ***************
  4. *** 1,5 ****
  5.   /*
  6. !  *    PathLevel: 4
  7.    *
  8.    *    the Patch Level above is to identify the version
  9.    *    of the all the files in this directory. given the above
  10. --- 1,5 ----
  11.   /*
  12. !  *    PathLevel: 7
  13.    *
  14.    *    the Patch Level above is to identify the version
  15.    *    of the all the files in this directory. given the above
  16. *** /tmp/,RCSt1a15510    Wed Sep  6 02:33:08 1989
  17. --- sgtty.h    Wed Sep  6 01:15:43 1989
  18. ***************
  19. *** 1,23 ****
  20. - #ifndef _SGTTY_H
  21. - #define _SGTTY_H
  22. - /*
  23. -  * $Log:    sgtty.h,v $
  24. -  * Revision 1.3  89/08/15  14:26:32  bammi
  25. -  * cleanup
  26. -  * 
  27. -  * Revision 1.2  89/03/17  02:13:11  bammi
  28. -  * added and tested simon pooles fs patches. corresponding patches here in include.
  29. -  * 
  30. -  * Revision 1.4  89/03/05  00:30:32  bammi
  31. -  * Added patches from Howard Johnson. Third version of Gnukernel.
  32. -  * 
  33. -  * Revision 1.3  89/03/04  23:48:14  bammi
  34. -  * added patches from frans. Added frans rs232.Second version of Gnukernel
  35. -  * 
  36. -  *
  37. -  */
  38.       /* sanity test */
  39.   #ifdef WANT_HCJ_RS232
  40.   #  ifdef WANT_FHM_RS232
  41. --- 1,3 ----
  42. ***************
  43. *** 79,84 ****
  44. --- 59,65 ----
  45.   /* Field names */
  46.   #define IN_CANON     0001000    /* when off, no special processing on input */
  47.                                   /* the VEOF is how many inchars to wakeup on*/
  48. + #define OCRMOD         0000001    /* map lf to cr + lf OUTPUT */
  49.   /* when IN_CANON is OFF, then we will interpret additional bits for special
  50.    * processing
  51.    */
  52. ***************
  53. *** 125,130 ****
  54. --- 106,112 ----
  55.   #define    FIONREAD    (TC_RS232|36)
  56.   #define    TCGETRS        (TC_RS232|37)
  57.   #define    TCSETDTR    (TC_RS232|38) /* |rts|dtr| each 2 bits: 01=off 10=on */
  58. + #define    TCSETBAUD    (TC_RS232|39)    /* set only baud rate - external */
  59.   #define    TCBAUD        (TC_RS232|99)    /* used by rstty.c internally */
  60.   #endif
  61.   
  62. ***************
  63. *** 173,177 ****
  64.   extern int    stty();
  65.   #endif
  66.   #endif
  67. - #endif /* _SGTTY_H */
  68. --- 155,157 ----
  69. *** /tmp/,RCSt1a15510    Wed Sep  6 02:33:11 1989
  70. --- std.h    Wed Sep  6 01:15:44 1989
  71. ***************
  72. *** 86,91 ****
  73. --- 86,92 ----
  74.   int        access(CONST char *, int);
  75.   unsigned    alarm(unsigned);
  76.   void *        alloca(unsigned long);
  77. + int         atexit(void (*)(void));
  78.   double        atof(CONST char *);
  79.   int        atoi(CONST char *);
  80.   long        atol(CONST char *);
  81. ***************
  82. *** 103,108 ****
  83. --- 104,110 ----
  84.   int        callm3(int, int, int, CONST char *);
  85.   void *        calloc(unsigned, unsigned);
  86.   int        callx(int, int);
  87. + void        cfree(void *, unsigned, unsigned);
  88.   int        chdir(CONST char *);
  89.   int        chmod(CONST char *, int);
  90.   int        chown(CONST char *, int, int);
  91. ***************
  92. *** 144,153 ****
  93. --- 146,157 ----
  94.   char *        getenv(CONST char *);
  95.   short        geteuid(void);
  96.   char        getgid(void);
  97. + int        gethostname( char *, int);
  98.   char *        getlogin(void);
  99.   int        getopt(int, char **, char *);
  100.   char *        getpass(CONST char *);
  101.   int        getpid(void);
  102. + int         getppid(void);
  103.   char *        gets(char *);
  104.   short        getuid(void);
  105.   char *        getwd(char *);
  106. ***************
  107. *** 217,223 ****
  108.   void        perror(CONST char *);
  109.   int        pipe(int *);
  110.   #ifdef __SRC__
  111. ! int        printf(CONST char *, long);
  112.   #else
  113.   int        printf(CONST char *, ...);
  114.   #endif
  115. --- 221,227 ----
  116.   void        perror(CONST char *);
  117.   int        pipe(int *);
  118.   #ifdef __SRC__
  119. ! int        printf(CONST char *, int);
  120.   #else
  121.   int        printf(CONST char *, ...);
  122.   #endif
  123. ***************
  124. *** 233,238 ****
  125. --- 237,243 ----
  126.   #endif
  127.   long        ptrace(int, int, long, long);
  128.   int        puts(CONST char *);
  129. + int        putenv(char *);
  130.   
  131.   void        qsort(void *, unsigned long, unsigned long,
  132.                 int(*)(CONST void *, CONST void *));
  133. ***************
  134. *** 245,268 ****
  135.   
  136.   void *        sbrk(int);
  137.   #ifdef __SRC__
  138. ! int        scanf(CONST char *, unsigned long);
  139.   #else
  140.   int        scanf(CONST char *, ...);
  141.   #endif
  142.   int        setgid(int);
  143.   int        setgrent(void);
  144.   void        setkey(CONST char *);
  145.   int        setpwent(void);
  146.   int        setuid(int);
  147.   unsigned    sleep(unsigned);
  148.   #ifdef __SRC__
  149. ! char *        sprintf(char *, CONST char *, long);
  150.   #else
  151.   char *        sprintf(char *, CONST char *, ...);
  152.   #endif
  153.   void        srand(long);
  154.   #ifdef __SRC__
  155. ! int        sscanf(CONST char *, CONST char *, unsigned long);
  156.   #else
  157.   int        sscanf(CONST char *, CONST char *, ...);
  158.   #endif
  159. --- 250,274 ----
  160.   
  161.   void *        sbrk(int);
  162.   #ifdef __SRC__
  163. ! int        scanf(CONST char *, int);
  164.   #else
  165.   int        scanf(CONST char *, ...);
  166.   #endif
  167.   int        setgid(int);
  168.   int        setgrent(void);
  169. + int        sethostname( char *, int );
  170.   void        setkey(CONST char *);
  171.   int        setpwent(void);
  172.   int        setuid(int);
  173.   unsigned    sleep(unsigned);
  174.   #ifdef __SRC__
  175. ! char *        sprintf(char *, CONST char *, int);
  176.   #else
  177.   char *        sprintf(char *, CONST char *, ...);
  178.   #endif
  179.   void        srand(long);
  180.   #ifdef __SRC__
  181. ! int        sscanf(CONST char *, CONST char *, int);
  182.   #else
  183.   int        sscanf(CONST char *, CONST char *, ...);
  184.   #endif
  185. ***************
  186. *** 304,309 ****
  187. --- 310,317 ----
  188.   char *        tgetstr(CONST char *, char **);
  189.   char *        tgoto(CONST char *, int, int);
  190.   long        time(long *);
  191. + char *        tmpname(char *);
  192. + char *        tempnam(char *, char *);
  193.   int        tolower(int);
  194.   int        toupper(int);
  195.   int        tputs(CONST char *, int, int(*)());
  196. *** /tmp/,RCSt1a15510    Wed Sep  6 02:33:23 1989
  197. --- varargs.h    Wed Sep  6 01:15:46 1989
  198. ***************
  199. *** 10,16 ****
  200.   #define  va_start(p)    (p) = (va_list) &va_alist;
  201.   #define  va_arg(p,type)    ( (type *) ((p)+=sizeof(type)) )[-1]
  202.   #define  va_end(p)
  203. ! #else
  204.   #else
  205.   
  206.   /* These macros implement traditional (non-ANSI) varargs
  207. --- 10,16 ----
  208.   #define  va_start(p)    (p) = (va_list) &va_alist;
  209.   #define  va_arg(p,type)    ( (type *) ((p)+=sizeof(type)) )[-1]
  210.   #define  va_end(p)
  211.   #else
  212.   
  213.   /* These macros implement traditional (non-ANSI) varargs
  214.